home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / email / Utils.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  9KB  |  277 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Miscellaneous utilities.'''
  5. import os
  6. import re
  7. import time
  8. import base64
  9. import random
  10. import socket
  11. import warnings
  12. from cStringIO import StringIO
  13. from email._parseaddr import quote
  14. from email._parseaddr import AddressList as _AddressList
  15. from email._parseaddr import mktime_tz
  16. from email._parseaddr import parsedate as _parsedate
  17. from email._parseaddr import parsedate_tz as _parsedate_tz
  18. from quopri import decodestring as _qdecode
  19. from email.Encoders import _bencode, _qencode
  20. COMMASPACE = ', '
  21. EMPTYSTRING = ''
  22. UEMPTYSTRING = u''
  23. CRLF = '\r\n'
  24. specialsre = re.compile('[][\\\\()<>@,:;".]')
  25. escapesre = re.compile('[][\\\\()"]')
  26.  
  27. def _identity(s):
  28.     return s
  29.  
  30.  
  31. def _bdecode(s):
  32.     if not s:
  33.         return s
  34.     
  35.     value = base64.decodestring(s)
  36.     if not s.endswith('\n') and value.endswith('\n'):
  37.         return value[:-1]
  38.     
  39.     return value
  40.  
  41.  
  42. def fix_eols(s):
  43.     '''Replace all line-ending characters with \r
  44. .'''
  45.     s = re.sub('(?<!\\r)\\n', CRLF, s)
  46.     s = re.sub('\\r(?!\\n)', CRLF, s)
  47.     return s
  48.  
  49.  
  50. def formataddr(pair):
  51.     '''The inverse of parseaddr(), this takes a 2-tuple of the form
  52.     (realname, email_address) and returns the string value suitable
  53.     for an RFC 2822 From, To or Cc header.
  54.  
  55.     If the first element of pair is false, then the second element is
  56.     returned unmodified.
  57.     '''
  58.     (name, address) = pair
  59.     if name:
  60.         quotes = ''
  61.         if specialsre.search(name):
  62.             quotes = '"'
  63.         
  64.         name = escapesre.sub('\\\\\\g<0>', name)
  65.         return '%s%s%s <%s>' % (quotes, name, quotes, address)
  66.     
  67.     return address
  68.  
  69.  
  70. def getaddresses(fieldvalues):
  71.     '''Return a list of (REALNAME, EMAIL) for each fieldvalue.'''
  72.     all = COMMASPACE.join(fieldvalues)
  73.     a = _AddressList(all)
  74.     return a.addresslist
  75.  
  76. ecre = re.compile('\n  =\\?                   # literal =?\n  (?P<charset>[^?]*?)   # non-greedy up to the next ? is the charset\n  \\?                    # literal ?\n  (?P<encoding>[qb])    # either a "q" or a "b", case insensitive\n  \\?                    # literal ?\n  (?P<atom>.*?)         # non-greedy up to the next ?= is the atom\n  \\?=                   # literal ?=\n  ', re.VERBOSE | re.IGNORECASE)
  77.  
  78. def formatdate(timeval = None, localtime = False, usegmt = False):
  79.     '''Returns a date string as specified by RFC 2822, e.g.:
  80.  
  81.     Fri, 09 Nov 2001 01:08:47 -0000
  82.  
  83.     Optional timeval if given is a floating point time value as accepted by
  84.     gmtime() and localtime(), otherwise the current time is used.
  85.  
  86.     Optional localtime is a flag that when True, interprets timeval, and
  87.     returns a date relative to the local timezone instead of UTC, properly
  88.     taking daylight savings time into account.
  89.  
  90.     Optional argument usegmt means that the timezone is written out as
  91.     an ascii string, not numeric one (so "GMT" instead of "+0000"). This
  92.     is needed for HTTP, and is only used when localtime==False.
  93.     '''
  94.     if timeval is None:
  95.         timeval = time.time()
  96.     
  97.     if localtime:
  98.         now = time.localtime(timeval)
  99.         if time.daylight and now[-1]:
  100.             offset = time.altzone
  101.         else:
  102.             offset = time.timezone
  103.         (hours, minutes) = divmod(abs(offset), 3600)
  104.         if offset > 0:
  105.             sign = '-'
  106.         else:
  107.             sign = '+'
  108.         zone = '%s%02d%02d' % (sign, hours, minutes // 60)
  109.     else:
  110.         now = time.gmtime(timeval)
  111.         if usegmt:
  112.             zone = 'GMT'
  113.         else:
  114.             zone = '-0000'
  115.     return '%s, %02d %s %04d %02d:%02d:%02d %s' % ([
  116.         'Mon',
  117.         'Tue',
  118.         'Wed',
  119.         'Thu',
  120.         'Fri',
  121.         'Sat',
  122.         'Sun'][now[6]], now[2], [
  123.         'Jan',
  124.         'Feb',
  125.         'Mar',
  126.         'Apr',
  127.         'May',
  128.         'Jun',
  129.         'Jul',
  130.         'Aug',
  131.         'Sep',
  132.         'Oct',
  133.         'Nov',
  134.         'Dec'][now[1] - 1], now[0], now[3], now[4], now[5], zone)
  135.  
  136.  
  137. def make_msgid(idstring = None):
  138.     '''Returns a string suitable for RFC 2822 compliant Message-ID, e.g:
  139.  
  140.     <20020201195627.33539.96671@nightshade.la.mastaler.com>
  141.  
  142.     Optional idstring if given is a string used to strengthen the
  143.     uniqueness of the message id.
  144.     '''
  145.     timeval = time.time()
  146.     utcdate = time.strftime('%Y%m%d%H%M%S', time.gmtime(timeval))
  147.     pid = os.getpid()
  148.     randint = random.randrange(100000)
  149.     if idstring is None:
  150.         idstring = ''
  151.     else:
  152.         idstring = '.' + idstring
  153.     idhost = socket.getfqdn()
  154.     msgid = '<%s.%s.%s%s@%s>' % (utcdate, pid, randint, idstring, idhost)
  155.     return msgid
  156.  
  157.  
  158. def parsedate(data):
  159.     if not data:
  160.         return None
  161.     
  162.     return _parsedate(data)
  163.  
  164.  
  165. def parsedate_tz(data):
  166.     if not data:
  167.         return None
  168.     
  169.     return _parsedate_tz(data)
  170.  
  171.  
  172. def parseaddr(addr):
  173.     addrs = _AddressList(addr).addresslist
  174.     if not addrs:
  175.         return ('', '')
  176.     
  177.     return addrs[0]
  178.  
  179.  
  180. def unquote(str):
  181.     '''Remove quotes from a string.'''
  182.     if len(str) > 1:
  183.         if str.startswith('"') and str.endswith('"'):
  184.             return str[1:-1].replace('\\\\', '\\').replace('\\"', '"')
  185.         
  186.         if str.startswith('<') and str.endswith('>'):
  187.             return str[1:-1]
  188.         
  189.     
  190.     return str
  191.  
  192.  
  193. def decode_rfc2231(s):
  194.     '''Decode string according to RFC 2231'''
  195.     import urllib as urllib
  196.     parts = s.split("'", 2)
  197.     if len(parts) == 1:
  198.         return (None, None, urllib.unquote(s))
  199.     
  200.     (charset, language, s) = parts
  201.     return (charset, language, urllib.unquote(s))
  202.  
  203.  
  204. def encode_rfc2231(s, charset = None, language = None):
  205.     '''Encode string according to RFC 2231.
  206.  
  207.     If neither charset nor language is given, then s is returned as-is.  If
  208.     charset is given but not language, the string is encoded using the empty
  209.     string for language.
  210.     '''
  211.     import urllib
  212.     s = urllib.quote(s, safe = '')
  213.     if charset is None and language is None:
  214.         return s
  215.     
  216.     if language is None:
  217.         language = ''
  218.     
  219.     return "%s'%s'%s" % (charset, language, s)
  220.  
  221. rfc2231_continuation = re.compile('^(?P<name>\\w+)\\*((?P<num>[0-9]+)\\*?)?$')
  222.  
  223. def decode_params(params):
  224.     '''Decode parameters list according to RFC 2231.
  225.  
  226.     params is a sequence of 2-tuples containing (content type, string value).
  227.     '''
  228.     new_params = []
  229.     rfc2231_params = { }
  230.     (name, value) = params[0]
  231.     new_params.append((name, value))
  232.     for name, value in params[1:]:
  233.         value = unquote(value)
  234.         mo = rfc2231_continuation.match(name)
  235.         if mo:
  236.             (name, num) = mo.group('name', 'num')
  237.             if num is not None:
  238.                 num = int(num)
  239.             
  240.             rfc2231_param1 = rfc2231_params.setdefault(name, [])
  241.             rfc2231_param1.append((num, value))
  242.             continue
  243.         new_params.append((name, '"%s"' % quote(value)))
  244.     
  245.     if rfc2231_params:
  246.         for name, continuations in rfc2231_params.items():
  247.             value = []
  248.             continuations.sort()
  249.             for num, continuation in continuations:
  250.                 value.append(continuation)
  251.             
  252.             (charset, language, value) = decode_rfc2231(EMPTYSTRING.join(value))
  253.             new_params.append((name, (charset, language, '"%s"' % quote(value))))
  254.         
  255.     
  256.     return new_params
  257.  
  258.  
  259. def collapse_rfc2231_value(value, errors = 'replace', fallback_charset = 'us-ascii'):
  260.     if isinstance(value, tuple):
  261.         rawval = unquote(value[2])
  262.         if not value[0]:
  263.             pass
  264.         charset = 'us-ascii'
  265.         
  266.         try:
  267.             return unicode(rawval, charset, errors)
  268.         except LookupError:
  269.             return unicode(rawval, fallback_charset, errors)
  270.         except:
  271.             None<EXCEPTION MATCH>LookupError
  272.         
  273.  
  274.     None<EXCEPTION MATCH>LookupError
  275.     return unquote(value)
  276.  
  277.